Gentoo Archives: gentoo-commits

From: Benda XU <heroxbd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ugene/
Date: Mon, 03 Feb 2020 04:02:55
Message-Id: 1580702555.1b3fdb740a49af440e5f0956f9c64b00be9b7ace.heroxbd@gentoo
1 commit: 1b3fdb740a49af440e5f0956f9c64b00be9b7ace
2 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 3 03:39:43 2020 +0000
4 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 3 04:02:35 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1b3fdb74
7
8 sci-biology/ugene: remove from tree.
9
10 SRC_URI is dead. Upstream is alive, but it is not trivial to figure
11 out the source tarball download of the new version.
12
13 Feel free to add this package back to tree.
14
15 Bug: https://bugs.gentoo.org/707558
16 Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>
17
18 sci-biology/ugene/metadata.xml | 12 ----------
19 sci-biology/ugene/ugene-1.20.0.ebuild | 42 -----------------------------------
20 2 files changed, 54 deletions(-)
21
22 diff --git a/sci-biology/ugene/metadata.xml b/sci-biology/ugene/metadata.xml
23 deleted file mode 100644
24 index a3daeebd2..000000000
25 --- a/sci-biology/ugene/metadata.xml
26 +++ /dev/null
27 @@ -1,12 +0,0 @@
28 -<?xml version="1.0" encoding="UTF-8"?>
29 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
30 -<pkgmetadata>
31 - <maintainer type="person">
32 - <email>alexxy@g.o</email>
33 - <name>Alexey Shvetsov</name>
34 - </maintainer>
35 - <maintainer type="project">
36 - <email>sci@g.o</email>
37 - <name>Gentoo Science Project</name>
38 - </maintainer>
39 -</pkgmetadata>
40
41 diff --git a/sci-biology/ugene/ugene-1.20.0.ebuild b/sci-biology/ugene/ugene-1.20.0.ebuild
42 deleted file mode 100644
43 index 3aa9dfebe..000000000
44 --- a/sci-biology/ugene/ugene-1.20.0.ebuild
45 +++ /dev/null
46 @@ -1,42 +0,0 @@
47 -# Copyright 1999-2016 Gentoo Foundation
48 -# Distributed under the terms of the GNU General Public License v2
49 -
50 -EAPI=5
51 -
52 -inherit qmake-utils
53 -
54 -DESCRIPTION="A free open-source cross-platform bioinformatics software"
55 -HOMEPAGE="http://ugene.unipro.ru"
56 -SRC_URI="http://${PN}.unipro.ru/downloads/${P}.tar.gz"
57 -
58 -LICENSE="GPL-2"
59 -SLOT="0"
60 -KEYWORDS="~amd64"
61 -IUSE="cpu_flags_x86_sse2"
62 -
63 -# http://ugene.net/download.html states Qt5.4 and QtWebkit but:
64 -# Project MESSAGE: Cannot build Unipro UGENE with Qt version 4.8.7
65 -# Project ERROR: Use at least Qt 5.2.1.
66 -DEPEND="
67 - >=dev-qt/qtgui-5.2.1
68 - >=dev-qt/qtscript-5.2.1[scripttools]"
69 -RDEPEND="${DEPEND}"
70 -
71 -LANGS="cs en ru zh"
72 -
73 -src_configure() {
74 - local CONFIG_OPTS
75 - if use amd64; then
76 - CONFIG_OPTS+=( CONFIG+="x64" )
77 - elif use ppc; then
78 - CONFIG_OPTS+=( CONFIG+="ppc" )
79 - fi
80 -
81 - use cpu_flags_x86_sse2 && CONFIG_OPTS+=( use_sse2 )
82 -
83 - eqmake5 $CONFIG_OPTS || die
84 -}
85 -
86 -src_install() {
87 - emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install
88 -}