From 90c88731bd036e5698b281fbc0a5f3aa4c9983ac Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 29 Jun 2020 11:38:31 +0100 Subject: gentoo resync : 29.06.2020 --- sci-visualization/fityk/Manifest | 2 - sci-visualization/fityk/fityk-1.2.9.ebuild | 92 ------------------------------ 2 files changed, 94 deletions(-) delete mode 100644 sci-visualization/fityk/fityk-1.2.9.ebuild (limited to 'sci-visualization/fityk') diff --git a/sci-visualization/fityk/Manifest b/sci-visualization/fityk/Manifest index d6aaa4a093d4..124f009009fa 100644 --- a/sci-visualization/fityk/Manifest +++ b/sci-visualization/fityk/Manifest @@ -1,5 +1,3 @@ -DIST fityk-1.2.9.tar.bz2 1370476 BLAKE2B 30cc6f640bcf3323d592563ce153a47a0e2770f70d0a0cf8ff6a886b1e86421e370cbc142ed89914eb63ed32e35cc6c67c1297bd8680e022ed58697ebe174e5e SHA512 e6d4846a0690ea5e7b94fc067de48d67d6342ff595844d709af9f3b978bf4bd9d0095ce348716fd0053c5575b4bff5825f8f126a53bf7e11f4e6e8a2cc6ddb1a DIST fityk-1.3.1.tar.bz2 1518937 BLAKE2B 6eb13646e1b5cf3fb0763bcf3e91a1877d89f14f1b986f1065fd27052e7110b357c99431a326a6c1fa2ba002300912b922cd3d5589ac5da367d2fbcee209f9a2 SHA512 4a7a65691af8b8d5b47461133b7870ea21ea04ac2ee8ee5714a6b9bab2f072baa6b5d8bf011baba09c62a7ce2dc9d60f3040cc6fdb77dc498b6e03a24fc0fe08 -EBUILD fityk-1.2.9.ebuild 1999 BLAKE2B b464361d4802e259d89ed1c3dfbf547bfe12712712032ad76293f372dfd41f3b66eca547657bd93f2aaf8fcf45575fe2b180f986d11f6fdce9d7d5bd9b386c09 SHA512 04906e65b3dc51b095cd16cb2f56231bc8565769e9bc79280ae4de0a54e1eed98da5761a2c6c1cee96e25bb31662eedd0d6e45828704268d5941dd51d77393d2 EBUILD fityk-1.3.1.ebuild 2149 BLAKE2B a719547248466bd5c9417051f42983097487dfbb0ea29c3964652bd7563c51fe712ad8ad95e52bae72c04f1893cb5db05e9d31b53aad9c766df52d7ee5966310 SHA512 a7df734423246b71afab679b584379ece6802fb28f158dc9407d129ed6e735c6f470f44c37fee545aa22ed4d3efa9a4fe556bf0b1ecce4a9bcfa7f588d0d2b73 MISC metadata.xml 1378 BLAKE2B a6b73be959353e2a764d5c39ae13c4fe1bc38c5c0ea5a3c2557e32825077e13d0a97504f8d79e338a65803bc98326fe25cb7e86d3aaa8c93c5d9bdce30cbec90 SHA512 38e516a5e0ec249d3ed4e54d4780830e1b53994e9dc1999c664b2f37aac0247df780522e7b25c124ffb0d9766d1292871ec0f9a238c2b3aa9994cef3581befe6 diff --git a/sci-visualization/fityk/fityk-1.2.9.ebuild b/sci-visualization/fityk/fityk-1.2.9.ebuild deleted file mode 100644 index 6f6ef3beea26..000000000000 --- a/sci-visualization/fityk/fityk-1.2.9.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -WX_GTK_VER="3.0" - -PYTHON_COMPAT=( python2_7 ) - -inherit autotools-utils fdo-mime python-r1 wxwidgets - -DESCRIPTION="General-purpose nonlinear curve fitting and data analysis" -HOMEPAGE="http://fityk.nieto.pl/" -SRC_URI="https://github.com/wojdyr/${PN}/releases/download/v${PV}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="gnuplot nlopt readline python static-libs wxwidgets" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -CDEPEND=" - >=sci-libs/xylib-1 - >=dev-lang/lua-5.1:0 - nlopt? ( sci-libs/nlopt ) - python? ( ${PYTHON_DEPS} ) - readline? ( sys-libs/readline:* ) - wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER} )" -DEPEND="${CDEPEND} - dev-libs/boost - dev-lang/swig" -RDEPEND="${CDEPEND} - gnuplot? ( sci-visualization/gnuplot )" - -src_prepare() { - use python && python_copy_sources - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - --docdir="${EPREFIX}/usr/share/doc/${PF}" - --disable-xyconvert - --disable-python - $(use_enable nlopt) - $(use_enable wxwidgets GUI) - $(use_with readline) - ) - autotools-utils_src_configure - if use python; then - myeconfargs=( - --disable-xyconvert - --enable-python - --disable-nlopt - --disable-GUI - --without-readline ) - python_foreach_impl autotools-utils_src_configure - fi -} - -src_compile() { - autotools-utils_src_compile - if use python; then - python_compilation() { - cd "${BUILD_DIR}"/fityk || die - einfo "in ${PWD}" - emake swig/_fityk.la - } - python_foreach_impl python_compilation - fi -} - -src_install() { - autotools-utils_src_install - if use python; then - python_installation() { - cd "${BUILD_DIR}"/fityk || die - emake DESTDIR="${D}" install-pyexecLTLIBRARIES - rm "${D}"/$(python_get_sitedir)/*.la || die - } - python_foreach_impl python_installation - fi -} - -pkg_postinst() { - fdo-mime_desktop_database_update -} - -pkg_postrm() { - fdo-mime_desktop_database_update -} -- cgit v1.2.3