Gentoo Archives: gentoo-commits

From: Philip Miess <Phil_miess@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/user/superposition:master commit in: app-text/presage/
Date: Thu, 26 Oct 2017 01:07:39
Message-Id: 1508980202.8e780ff6fd23a61330632e9859bc119f5f07c5cd.Phil_miess@gentoo
1 commit: 8e780ff6fd23a61330632e9859bc119f5f07c5cd
2 Author: Philip Miess <Philip_Miess <AT> yahoo <DOT> com>
3 AuthorDate: Thu Oct 26 01:01:22 2017 +0000
4 Commit: Philip Miess <Phil_miess <AT> yahoo <DOT> com>
5 CommitDate: Thu Oct 26 01:10:02 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=8e780ff6
7
8 needs python 2
9
10 app-text/presage/Manifest | 2 +-
11 app-text/presage/presage-0.8.9.ebuild | 11 +++++++----
12 2 files changed, 8 insertions(+), 5 deletions(-)
13
14 diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
15 index 41ef82b..e0b88b4 100644
16 --- a/app-text/presage/Manifest
17 +++ b/app-text/presage/Manifest
18 @@ -1,3 +1,3 @@
19 AUX presage-0.8.9-automagic.patch 4425 SHA256 21e95d42cc08aaf89a686989f0e7d55c22868fd7603c8c76cd31bf1fbc9ed354 SHA512 e57ec49b442f8eb08c9a0a62572acab60b5aa0bfe88a0f8552a7959cbf38fa296d00a83c96e82e727bd21fc5ab07a4b3296b51b7929fea4ca69e4922ddfd3e3a WHIRLPOOL e568e83ecc6d24f7d9ce9b4aa93a45e3316501afba8e946ede2f3b012abae3fe1f935ac1ff09b293ced5858dec1b876c560e20803869b75eb59e9ff54aa165dc
20 DIST presage-0.8.9.tar.gz 2568505 SHA256 5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1 WHIRLPOOL 029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
21 -EBUILD presage-0.8.9.ebuild 1121 SHA256 965e9969dc7e282a0a4cb04740cd65d14029ccfc5c96c2a5aa89393675896ede SHA512 8574b8c2ad396219ba77dcad6efec99f628d071f091a3bcf9a7f10614f5c03254356abaa82ffbf408250cc3d2d4382b775707bd5d7b8ccc3707edc686f46aeec WHIRLPOOL f6308f20f58b6ed5077b567a8e072e8345a668e671488325dec26dd68c58b5764413bf6c32834d21385e2b9274c9dc5738782a575cdc7d014e608d7c568fa402
22 +EBUILD presage-0.8.9.ebuild 1250 SHA256 a843f499b10d0517932bae6a13e80cb0ee1ce1611676397ac8af64d4c2e3b420 SHA512 d006a445711c9ba6d83194703996fb430eed3249de64f8c0dba772677460fababdcbdf34e1f74dc5d5a707b89c0dd60325dc790a840fe74826103d2af5ac3d18 WHIRLPOOL 63d82ab9cd290870eac4a948f9f1d7017b54aeb7b1d026087ba9be70dd16caaa4abee8c925554d592db72317f2b1ff002d22c2aecee0b06553017add7d2a6359
23
24 diff --git a/app-text/presage/presage-0.8.9.ebuild b/app-text/presage/presage-0.8.9.ebuild
25 index 67be808..fc46535 100644
26 --- a/app-text/presage/presage-0.8.9.ebuild
27 +++ b/app-text/presage/presage-0.8.9.ebuild
28 @@ -1,10 +1,12 @@
29 -# Copyright 1999-2013 Gentoo Foundation
30 +# Copyright 1999-2017 Gentoo Foundation
31 # Distributed under the terms of the GNU General Public License v2
32 # $Header: $
33
34 EAPI=5
35
36 -inherit eutils autotools
37 +PYTHON_COMPAT=( python2_7 )
38 +
39 +inherit eutils autotools python-single-r1
40 DESCRIPTION="The intelligent predictive text entry system"
41 HOMEPAGE="http://presage.sourceforge.net"
42 SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
43 @@ -13,18 +15,19 @@ LICENSE="GPL-2+"
44 SLOT="0"
45 KEYWORDS="~amd64 ~arm ~x86"
46 IUSE="doc examples gtk python sqlite test"
47 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
48
49 RDEPEND="
50 examples? ( sys-libs/ncurses )
51 gtk? ( x11-libs/gtk+ )
52 - python? ( dev-lang/python dev-python/dbus-python )
53 + python? ( ${PYTHON_DEPS} dev-python/dbus-python[${PYTHON_USEDEP}] )
54 sqlite? ( dev-db/sqlite )
55 app-text/dos2unix
56 "
57
58 DEPEND="${COMMON_DEPEND}
59 doc? ( app-doc/doxygen )
60 - python? ( dev-lang/swig )
61 + python? ( ${PYTHON_DEPS} dev-lang/swig )
62 test? ( dev-util/cppunit )
63 sys-apps/help2man
64 "