Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygtkspellcheck/
Date: Thu, 06 Oct 2016 15:40:52
Message-Id: 1475768159.abcb1fbb298cbf4f9034c753fc8eb62b06e1b3cb.monsieurp@gentoo
1 commit: abcb1fbb298cbf4f9034c753fc8eb62b06e1b3cb
2 Author: Henning Schild <henning <AT> hennsch <DOT> de>
3 AuthorDate: Wed Oct 5 17:57:01 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 6 15:35:59 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abcb1fbb
7
8 dev-python/pygtkspellcheck: Add pygtkspellcheck to the tree.
9
10 It is a spellchecking library for GTK written in python.
11
12 Signed-off-by: Henning Schild <henning <AT> hennsch.de>
13 Closes: https://github.com/gentoo/gentoo/pull/2484
14 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
15
16 dev-python/pygtkspellcheck/Manifest | 3 +++
17 dev-python/pygtkspellcheck/metadata.xml | 12 ++++++++++++
18 .../pygtkspellcheck/pygtkspellcheck-4.0.5.ebuild | 21 +++++++++++++++++++++
19 3 files changed, 36 insertions(+)
20
21 diff --git a/dev-python/pygtkspellcheck/Manifest b/dev-python/pygtkspellcheck/Manifest
22 new file mode 100644
23 index 00000000..ced9b94
24 --- /dev/null
25 +++ b/dev-python/pygtkspellcheck/Manifest
26 @@ -0,0 +1,3 @@
27 +DIST pygtkspellcheck-4.0.5.tar.gz 184313 SHA256 5d7473de147ab2c8fb61de93f7275139c53b08d8cee6b43a2062d6c83a6b2987 SHA512 f2ea035093a4d8bd9ca3b04f7433808b1ea8c3723b3ea12b95f470d8eb003c9cf58114cb4f342f36732ae46e6156223db5185f16a8c4b27551a6b99bc28a45b9 WHIRLPOOL c7a891987c148ca3531b43ad245576efdff328ace04e10ba992efea99768ad84a35f9d94d20e98973c37ceffe6e242dcee635ff0e912192a4605cd07153514a4
28 +EBUILD pygtkspellcheck-4.0.5.ebuild 564 SHA256 f72d980e63ccb290427825c4df87750b7d1d47cddab1090318a254b605cd352b SHA512 5c0c3476f9685056f2f4a0596ecd688d206ce53f4e991fcb07860457213e2e19f49ad260f4bdddf731c376eb047474ad2fe815c2ea8e00fde29937e81dce415f WHIRLPOOL ffaea976694f9fcd0247606f8182e1a7a77da6e00f1fceabda278a85f9c31d0c7ede94c6cff4281588f0a736ab6b2264cc869075c75914bce8b693509447d75c
29 +MISC metadata.xml 381 SHA256 11a6ef60d00856e06235b7b8db96784a94a8cc960a328d2ed5d30399370c374d SHA512 da194ec55795437aca489e1f99bcc097234dc6a0d811f55bc216f3b49420a4da190c997da593da25fc259e6cdaf41feb44e8baebe7ceb55c82ca10bf571c41f8 WHIRLPOOL 11aa352eb7b87f3ffa5340c72b445b42e6b5f3a15d3e47fcb5357286ac1df3ca20e181d73da8c3909cb0dd02dc93bb868bed41adcdbdbd09da8738b81d8bd166
30
31 diff --git a/dev-python/pygtkspellcheck/metadata.xml b/dev-python/pygtkspellcheck/metadata.xml
32 new file mode 100644
33 index 00000000..6666f98
34 --- /dev/null
35 +++ b/dev-python/pygtkspellcheck/metadata.xml
36 @@ -0,0 +1,12 @@
37 +<?xml version="1.0" encoding="UTF-8"?>
38 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
39 +<pkgmetadata>
40 + <maintainer type="project">
41 + <email>python@g.o</email>
42 + <name>Python</name>
43 + </maintainer>
44 + <upstream>
45 + <remote-id type="pypi">pygtkspellcheck</remote-id>
46 + <remote-id type="github">koehlma/pygtkspellcheck</remote-id>
47 + </upstream>
48 +</pkgmetadata>
49
50 diff --git a/dev-python/pygtkspellcheck/pygtkspellcheck-4.0.5.ebuild b/dev-python/pygtkspellcheck/pygtkspellcheck-4.0.5.ebuild
51 new file mode 100644
52 index 00000000..ac114f4
53 --- /dev/null
54 +++ b/dev-python/pygtkspellcheck/pygtkspellcheck-4.0.5.ebuild
55 @@ -0,0 +1,21 @@
56 +# Copyright 1999-2016 Gentoo Foundation
57 +# Distributed under the terms of the GNU General Public License v2
58 +# $Id$
59 +
60 +EAPI=6
61 +
62 +PYTHON_COMPAT=( python2_7 python3_4 )
63 +PYTHON_REQ_USE="sqlite"
64 +inherit distutils-r1
65 +
66 +DESCRIPTION="a simple but quite powerful spellchecking library for GTK written in pure Python"
67 +HOMEPAGE="https://github.com/koehlma/pygtkspellcheck"
68 +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
69 +
70 +LICENSE="GPL-3"
71 +SLOT="0"
72 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
73 +IUSE=""
74 +
75 +DEPEND="dev-python/pyenchant[${PYTHON_USEDEP}]"
76 +RDEPEND="${DEPEND}"