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 97F30138351 for ; Mon, 3 Feb 2020 04:02:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5285FE0826; Mon, 3 Feb 2020 04:02:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AD501E07F2 for ; Mon, 3 Feb 2020 04:02:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 77BC634E4D6 for ; Mon, 3 Feb 2020 04:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC722132 for ; Mon, 3 Feb 2020 04:02:49 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1580702555.1b3fdb740a49af440e5f0956f9c64b00be9b7ace.heroxbd@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ugene/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/ugene/metadata.xml sci-biology/ugene/ugene-1.20.0.ebuild X-VCS-Directories: sci-biology/ugene/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 1b3fdb740a49af440e5f0956f9c64b00be9b7ace X-VCS-Branch: master Date: Mon, 3 Feb 2020 04:02:49 +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: e3ca9371-af0f-4e39-bbc9-2ce843e5fd50 X-Archives-Hash: 9be6c2f8976646e1f310a4db66876ee1 commit: 1b3fdb740a49af440e5f0956f9c64b00be9b7ace Author: Benda Xu gentoo org> AuthorDate: Mon Feb 3 03:39:43 2020 +0000 Commit: Benda XU gentoo org> CommitDate: Mon Feb 3 04:02:35 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1b3fdb74 sci-biology/ugene: remove from tree. SRC_URI is dead. Upstream is alive, but it is not trivial to figure out the source tarball download of the new version. Feel free to add this package back to tree. Bug: https://bugs.gentoo.org/707558 Signed-off-by: Benda Xu gentoo.org> sci-biology/ugene/metadata.xml | 12 ---------- sci-biology/ugene/ugene-1.20.0.ebuild | 42 ----------------------------------- 2 files changed, 54 deletions(-) diff --git a/sci-biology/ugene/metadata.xml b/sci-biology/ugene/metadata.xml deleted file mode 100644 index a3daeebd2..000000000 --- a/sci-biology/ugene/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - alexxy@gentoo.org - Alexey Shvetsov - - - sci@gentoo.org - Gentoo Science Project - - diff --git a/sci-biology/ugene/ugene-1.20.0.ebuild b/sci-biology/ugene/ugene-1.20.0.ebuild deleted file mode 100644 index 3aa9dfebe..000000000 --- a/sci-biology/ugene/ugene-1.20.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit qmake-utils - -DESCRIPTION="A free open-source cross-platform bioinformatics software" -HOMEPAGE="http://ugene.unipro.ru" -SRC_URI="http://${PN}.unipro.ru/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="cpu_flags_x86_sse2" - -# http://ugene.net/download.html states Qt5.4 and QtWebkit but: -# Project MESSAGE: Cannot build Unipro UGENE with Qt version 4.8.7 -# Project ERROR: Use at least Qt 5.2.1. -DEPEND=" - >=dev-qt/qtgui-5.2.1 - >=dev-qt/qtscript-5.2.1[scripttools]" -RDEPEND="${DEPEND}" - -LANGS="cs en ru zh" - -src_configure() { - local CONFIG_OPTS - if use amd64; then - CONFIG_OPTS+=( CONFIG+="x64" ) - elif use ppc; then - CONFIG_OPTS+=( CONFIG+="ppc" ) - fi - - use cpu_flags_x86_sse2 && CONFIG_OPTS+=( use_sse2 ) - - eqmake5 $CONFIG_OPTS || die -} - -src_install() { - emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install -}