Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/relational/
Date: Wed, 27 Apr 2016 17:30:36
Message-Id: 1461778155.a81d3b65846d7dfaeccb5612e7440ecdbbe51dad.pesa@gentoo
1 commit: a81d3b65846d7dfaeccb5612e7440ecdbbe51dad
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 17:28:47 2016 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 17:29:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a81d3b65
7
8 sci-mathematics/relational: version bump
9
10 Ebuild rewritten using EAPI 6 and python-single-r1.
11 Parallel make install bug has been reported upstream.
12
13 Gentoo-Bug: 581000
14
15 Package-Manager: portage-2.2.28
16
17 sci-mathematics/relational/Manifest | 1 +
18 sci-mathematics/relational/relational-2.4.ebuild | 43 ++++++++++++++++++++++++
19 2 files changed, 44 insertions(+)
20
21 diff --git a/sci-mathematics/relational/Manifest b/sci-mathematics/relational/Manifest
22 index 649deb1..1dd8a55 100644
23 --- a/sci-mathematics/relational/Manifest
24 +++ b/sci-mathematics/relational/Manifest
25 @@ -1 +1,2 @@
26 DIST relational-0.11.tar.gz 133002 SHA256 367b8ade98e4b9d34ff463a217e41d7206d201cdaee3e49cf5f5bcb28f558040 SHA512 90f79700c7b7f2cfe481d10c565f7cf81acc94a26250eff367e361d8fe122c5ce7dfc740ede7309c8308003031eef2c4a1486657e6dc30b8151987af0bec764e WHIRLPOOL 3ae1a79e63fe60c051788b6b6b467ca3030f09bd6ff0f6dced5280c8873ef08e7ed59b4032fca78df3efb5566e21eeec7116ecbf0a4389710f55b8d35b6f205c
27 +DIST relational_2.4.orig.tar.gz 113606 SHA256 6e322ae4face623e91fb775171eb3758bcb9a253f2967c9e303208e9f32e5dee SHA512 c7cb6bf5c97df57e84f746d0adccbc3285ea863d692c2b999600ec70f8512e1a3f28a4414d2d34fa956ec6d7955ff290f638d048ada6b685d031823b46d368ff WHIRLPOOL 069c0f69237060fe1741c233678400abce7148ef865c6fa61847cc9395289f6f27b2b6456f632ded421ea3e9c0f4f3f8bb8d13713f72e950ad3608d7c4478052
28
29 diff --git a/sci-mathematics/relational/relational-2.4.ebuild b/sci-mathematics/relational/relational-2.4.ebuild
30 new file mode 100644
31 index 0000000..120b29b
32 --- /dev/null
33 +++ b/sci-mathematics/relational/relational-2.4.ebuild
34 @@ -0,0 +1,43 @@
35 +# Copyright 1999-2016 Gentoo Foundation
36 +# Distributed under the terms of the GNU General Public License v2
37 +# $Id$
38 +
39 +EAPI=6
40 +
41 +PYTHON_COMPAT=( python3_{4,5} )
42 +
43 +inherit python-single-r1
44 +
45 +DESCRIPTION="Educational tool for relational algebra"
46 +HOMEPAGE="http://ltworf.github.io/relational/"
47 +SRC_URI="https://github.com/ltworf/${PN}/releases/download/${PV}/${PN}_${PV}.orig.tar.gz"
48 +
49 +LICENSE="GPL-3"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +IUSE=""
53 +
54 +DEPEND="
55 + ${PYTHON_DEPS}
56 + dev-python/PyQt5[gui,webkit,widgets,${PYTHON_USEDEP}]
57 +"
58 +RDEPEND="${DEPEND}"
59 +
60 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
61 +
62 +S=${WORKDIR}/${PN}
63 +
64 +src_prepare() {
65 + default
66 +
67 + sed -i -e '/^Terminal=/ s/0/false/' \
68 + -e '/^Keywords=/ s/$/;/' \
69 + relational.desktop || die
70 +}
71 +
72 +src_install() {
73 + emake -j1 DESTDIR="${ED}" install-{relational-cli,python3-relational,relational}
74 + python_optimize
75 +
76 + dodoc CHANGELOG complexity CREDITS README.md
77 +}