From 2710d2ba14deb4e384bc30dfc539394119299e42 Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Sat, 16 Mar 2024 14:35:29 +0200 Subject: [PATCH] sci-mathematics/scilab-bin: drop 6.1.0 Signed-off-by: Alfred Wingate --- sci-mathematics/scilab-bin/Manifest | 1 - .../scilab-bin/scilab-bin-6.1.0.ebuild | 47 ------------------- 2 files changed, 48 deletions(-) delete mode 100644 sci-mathematics/scilab-bin/scilab-bin-6.1.0.ebuild diff --git a/sci-mathematics/scilab-bin/Manifest b/sci-mathematics/scilab-bin/Manifest index 404a721..89ca907 100644 --- a/sci-mathematics/scilab-bin/Manifest +++ b/sci-mathematics/scilab-bin/Manifest @@ -1,2 +1 @@ DIST scilab-2024.0.0.bin.x86_64-linux-gnu.tar.xz 207084340 BLAKE2B d5334eac77882165119484163588a4db0bb871ff7f1142b2059e0dbe5a6e76c37d530f9432bf14c3bec307ae8ed2c8af2564920994ca3455f428f76b790f45c4 SHA512 1c7bcfa7c00be4838f9a38c56fb4b792f7b024decf987869ed0752c23b453173fce762fea697659991db9c2c140fa66e7093a748d4fb52c043137cfa27b68d75 -DIST scilab-bin-6.1.0.tar.gz 252985998 BLAKE2B a80b82438f6af4b00465e2501914e0b5c50de4d10773800b85fd0ee91a2c9c230d7fb3ccaa0e36028ffc91ce3269c02aeb99d5d9b731c991516eefe7a380f86e SHA512 4232ecfbcb7e3e2f14991fecc94411e0530053285b680eb1faccea18565bd238efa45a391904e1926982b5a1dd50cfbf3f2703db214cba09b8fab63d1f219346 diff --git a/sci-mathematics/scilab-bin/scilab-bin-6.1.0.ebuild b/sci-mathematics/scilab-bin/scilab-bin-6.1.0.ebuild deleted file mode 100644 index 275e54e..0000000 --- a/sci-mathematics/scilab-bin/scilab-bin-6.1.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# Keep in mind that PN = scilab-bin - -EAPI=7 - -inherit xdg - -DESCRIPTION="Scientific software package for numerical computations" -HOMEPAGE="https://www.scilab.org/" -SRC_URI="https://www.scilab.org/download/${PV}/scilab-${PV}.bin.linux-x86_64.tar.gz -> ${P}.tar.gz" - -RESTRICT="mirror test" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ~amd64" - -RDEPEND=" - sci-mathematics/scilab-bin -" - -S="${WORKDIR}/scilab-${PV}" - -QA_PREBUILT="*" -QA_PRESTRIPPED="${QA_PREBUILT}" - -src_install() { - local d - for d in ACKNOWLEDGEMENTS COPYING *.md - do - dodoc "${d}" && rm "${d}" - done - - mkdir -p "${D}/usr/bin" || die - mkdir -p "${D}/usr/share" || die - mkdir -p "${D}/opt/${PN}" || die - - cp -R ./share/applications "${D}/usr/share" || die - cp -R ./share/icons "${D}/usr/share" || die - - mv * "${D}/opt/${PN}" || die - - pushd "${D}/usr/bin" >/dev/null || die - ln -s ../../opt/"${PN}"/bin/* . || die - popd || die -}