Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/relational/
Date: Sat, 04 Mar 2017 07:27:54
Message-Id: 1488612460.a6286a265a4aab4652f2aaaedb91c218b0e0e2ea.kensington@gentoo
1 commit: a6286a265a4aab4652f2aaaedb91c218b0e0e2ea
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 07:27:29 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 07:27:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6286a26
7
8 sci-mathematics/relational: version bump 2.5
9
10 Package-Manager: Portage-2.3.4, Repoman-2.3.2
11
12 sci-mathematics/relational/Manifest | 1 +
13 sci-mathematics/relational/relational-2.5.ebuild | 42 ++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/sci-mathematics/relational/Manifest b/sci-mathematics/relational/Manifest
17 index ff01402214b..30246943cdf 100644
18 --- a/sci-mathematics/relational/Manifest
19 +++ b/sci-mathematics/relational/Manifest
20 @@ -1 +1,2 @@
21 DIST relational_2.4.orig.tar.gz 113606 SHA256 6e322ae4face623e91fb775171eb3758bcb9a253f2967c9e303208e9f32e5dee SHA512 c7cb6bf5c97df57e84f746d0adccbc3285ea863d692c2b999600ec70f8512e1a3f28a4414d2d34fa956ec6d7955ff290f638d048ada6b685d031823b46d368ff WHIRLPOOL 069c0f69237060fe1741c233678400abce7148ef865c6fa61847cc9395289f6f27b2b6456f632ded421ea3e9c0f4f3f8bb8d13713f72e950ad3608d7c4478052
22 +DIST relational_2.5.orig.tar.gz 118776 SHA256 511330beda30b7acea6a1122bbdf39b1ee8b8f026e41d2bab8aed8b8d52f89b7 SHA512 588e35a57cf915e544d62749b76ed81927ac06fd88271f0d4d88ee5f221928c2c24e2a88165aae63c1b9b120ddaa20e15e21fe9c207eac3150b744274ae45a8a WHIRLPOOL 1fd04109e1ed9ca89fa6c8464f7de71677d8642d9dd1060beca142f276a7df2d7f6a8a9baa620c0e19308b76bd2ff1cb683139adad3a0850856be3e64e7c0ca2
23
24 diff --git a/sci-mathematics/relational/relational-2.5.ebuild b/sci-mathematics/relational/relational-2.5.ebuild
25 new file mode 100644
26 index 00000000000..03000185362
27 --- /dev/null
28 +++ b/sci-mathematics/relational/relational-2.5.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python3_{4,5} )
36 +
37 +inherit python-single-r1
38 +
39 +DESCRIPTION="Educational tool for relational algebra"
40 +HOMEPAGE="http://ltworf.github.io/relational/"
41 +SRC_URI="https://github.com/ltworf/${PN}/releases/download/${PV}/${PN}_${PV}.orig.tar.gz"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +DEPEND="
49 + ${PYTHON_DEPS}
50 + dev-python/PyQt5[gui,webkit,widgets,${PYTHON_USEDEP}]
51 +"
52 +RDEPEND="${DEPEND}"
53 +
54 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
55 +
56 +S=${WORKDIR}/${PN}
57 +
58 +src_prepare() {
59 + default
60 +
61 + sed -i -e '/^Terminal=/ s/0/false/' \
62 + -e '/^Keywords=/ s/$/;/' \
63 + relational.desktop || die
64 +}
65 +
66 +src_install() {
67 + emake -j1 DESTDIR="${ED}" install-{relational-cli,python3-relational,relational}
68 + python_optimize
69 +
70 + dodoc CHANGELOG complexity CREDITS README.md
71 +}