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 4C623138351 for ; Sun, 16 Feb 2020 22:06:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44E25E08A2; Sun, 16 Feb 2020 22:06:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2ECBEE08A2 for ; Sun, 16 Feb 2020 22:06:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1059B34EC4D for ; Sun, 16 Feb 2020 22:06:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E0B514D for ; Sun, 16 Feb 2020 22:06:31 +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: <1581890756.0260ef2cf9c018e05d81e09ec48a342c4c043715.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/relational/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/relational/relational-2.5-r1.ebuild X-VCS-Directories: sci-mathematics/relational/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0260ef2cf9c018e05d81e09ec48a342c4c043715 X-VCS-Branch: master Date: Sun, 16 Feb 2020 22:06:31 +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: 84495c1f-1d86-41c4-aeaa-7f3bcfa7000c X-Archives-Hash: 49eeb77814bbf1838f5406195cb150f7 commit: 0260ef2cf9c018e05d81e09ec48a342c4c043715 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 16 22:02:17 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 16 22:05:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0260ef2c sci-mathematics/relational: Drop 2.5-r1 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> .../relational/relational-2.5-r1.ebuild | 44 ---------------------- 1 file changed, 44 deletions(-) diff --git a/sci-mathematics/relational/relational-2.5-r1.ebuild b/sci-mathematics/relational/relational-2.5-r1.ebuild deleted file mode 100644 index 5bb400c2b91..00000000000 --- a/sci-mathematics/relational/relational-2.5-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -inherit python-single-r1 - -DESCRIPTION="Educational tool for relational algebra" -HOMEPAGE="https://ltworf.github.io/relational/" -SRC_URI="https://github.com/ltworf/${PN}/releases/download/${PV}/${PN}_${PV}.orig.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=" - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/PyQt5[gui,webkit,widgets,${PYTHON_MULTI_USEDEP}] - ') -" -RDEPEND="${DEPEND}" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -S=${WORKDIR}/${PN} - -src_prepare() { - default - - sed -i -e '/^Terminal=/ s/0/false/' \ - -e '/^Keywords=/ s/$/;/' \ - relational.desktop || die -} - -src_install() { - emake -j1 DESTDIR="${ED}" install-{relational-cli,python3-relational,relational} - python_optimize - - dodoc CHANGELOG complexity CREDITS README.md -}