From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cadabra/
Date: Wed, 17 Apr 2024 22:10:45 +0000 (UTC) [thread overview]
Message-ID: <1713391840.3a72f7a44aaab3c152fc7b3a4635972c28863eee.xgqt@gentoo> (raw)
commit: 3a72f7a44aaab3c152fc7b3a4635972c28863eee
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 17 19:42:40 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 22:10:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a72f7a4
sci-mathematics/cadabra: drop old 2.4.4.1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
sci-mathematics/cadabra/Manifest | 1 -
sci-mathematics/cadabra/cadabra-2.4.4.1.ebuild | 104 -------------------------
2 files changed, 105 deletions(-)
diff --git a/sci-mathematics/cadabra/Manifest b/sci-mathematics/cadabra/Manifest
index f952e30338b3..7301e0ff56c0 100644
--- a/sci-mathematics/cadabra/Manifest
+++ b/sci-mathematics/cadabra/Manifest
@@ -1,2 +1 @@
-DIST cadabra-2.4.4.1.tar.gz 25171405 BLAKE2B 7505b5b56c4b9f18c63535cac1854a8926f985729ac9b284146d7d604c4774436510f1fa04c615efb4e06ae4b077859e391046b2d07565586afc0d9dac66156a SHA512 9e81889dabeff1ad93f4d8fc01960c11747d2a19d0cb6d8f872cff217ffe7bd6b92fcd5ce49cf5f2c089c440a3abdb0358f5f470b4de616ce17c42a23864caf6
DIST cadabra-2.4.5.4.tar.gz 26825874 BLAKE2B 90562e4ddb08a99a38f32d5cf3fe237b2ca5ece80e4bf70caa8db23a2b6af246b289eb41e7d366c5a242e6e06a680ab0917deb43f29efcf7d6703338c7e97d00 SHA512 907e291880aac84a4f5695f77dd34512c13dba320b38fee59c765b070235c9ef777f6e188c675c8247f56144624edb84459d8b500e4c074731633a2b9cf9ee74
diff --git a/sci-mathematics/cadabra/cadabra-2.4.4.1.ebuild b/sci-mathematics/cadabra/cadabra-2.4.4.1.ebuild
deleted file mode 100644
index dc848e56ac06..000000000000
--- a/sci-mathematics/cadabra/cadabra-2.4.4.1.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MAJOR=$(ver_cut 1)
-CADABRA=${PN}${MAJOR}
-
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit xdg-utils python-single-r1 cmake
-
-DESCRIPTION="Field-theory motivated approach to computer algebra"
-HOMEPAGE="https://cadabra.science/
- https://github.com/kpeeters/cadabra2/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/kpeeters/${CADABRA}.git"
-else
- SRC_URI="https://github.com/kpeeters/${CADABRA}/archive/${PV}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}"/${CADABRA}-${PV}
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0/${MAJOR}"
-IUSE="gui +jupyter test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- ${PYTHON_DEPS}
- app-text/dvipng
- dev-cpp/glibmm:2
- dev-db/sqlite:3=
- dev-libs/boost:=
- dev-libs/gmp:=[cxx]
- dev-libs/jsoncpp:=
- dev-libs/libsigc++:2
- dev-texlive/texlive-basic
- $(python_gen_cond_dep '
- dev-python/gmpy:2[${PYTHON_USEDEP}]
- dev-python/matplotlib[${PYTHON_USEDEP}]
- dev-python/sympy[${PYTHON_USEDEP}]
- jupyter? ( dev-python/jupyter[${PYTHON_USEDEP}] )
- ')
- gui? ( dev-cpp/gtkmm:3.0 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="$(python_gen_cond_dep 'dev-python/pybind11[${PYTHON_USEDEP}]')"
-
-PATCHES=( "${FILESDIR}"/${CADABRA}-CMake.patch )
-
-DOCS=( CODE_OF_CONDUCT.md CONTRIBUTING.md JUPYTER.rst README.rst )
-
-xdg_update() {
- if use gui ; then
- xdg_icon_cache_update
- xdg_desktop_database_update
- xdg_mimeinfo_database_update
- fi
-}
-
-src_prepare() {
- # Clean postinst script which calls libtool and icon-cache update
- echo '#!/bin/sh' > "${S}"/config/postinst.in || die
-
- # Fix "PYTHON_EXECUTABLE" in Jupyter kernel
- sed -i "s|@PYTHON_EXECUTABLE@|${EPYTHON}|" \
- "${S}"/jupyterkernel/kernelspec/kernel.json.in || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local -a mycmakeargs=(
- -DENABLE_SYSTEM_JSONCPP=ON
- -DPACKAGING_MODE=ON
- -DUSE_PYTHON_3=ON
- -DBUILD_AS_CPP_LIBRARY=OFF
- -DENABLE_JUPYTER=OFF # special Xeus Jupyter kernel (uses xtl)
- -DENABLE_MATHEMATICA=OFF
- -DINSTALL_TARGETS_ONLY=OFF
- -DBUILD_TESTS=$(usex test)
- -DENABLE_FRONTEND=$(usex gui)
- -DENABLE_PY_JUPYTER=$(usex jupyter)
- )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
- python_optimize
-}
-
-pkg_postinst() {
- xdg_update
-}
-
-pkg_postrm() {
- xdg_update
-}
next reply other threads:[~2024-04-17 22:10 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-17 22:10 Maciej Barć [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-19 12:44 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cadabra/ Maciej Barć
2024-04-19 12:44 Maciej Barć
2024-04-17 22:10 Maciej Barć
2024-02-28 0:37 Sam James
2024-01-25 20:03 Maciej Barć
2024-01-25 20:03 Maciej Barć
2023-10-18 17:12 Sam James
2023-09-09 18:14 Maciej Barć
2023-04-22 23:18 Maciej Barć
2023-04-22 23:18 Maciej Barć
2023-04-22 23:18 Maciej Barć
2023-04-20 0:03 Maciej Barć
2023-03-08 20:39 Maciej Barć
2023-01-28 0:15 Sam James
2022-12-06 21:06 Maciej Barć
2022-12-06 21:06 Maciej Barć
2022-12-06 21:06 Maciej Barć
2022-11-28 20:33 Maciej Barć
2022-10-27 15:00 Maciej Barć
2022-10-27 15:00 Maciej Barć
2022-10-26 22:04 Maciej Barć
2022-10-06 12:34 Maciej Barć
2022-07-12 21:50 Maciej Barć
2022-07-12 21:50 Maciej Barć
2022-03-02 6:59 Maciej Barć
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1713391840.3a72f7a44aaab3c152fc7b3a4635972c28863eee.xgqt@gentoo \
--to=xgqt@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox